home *** CD-ROM | disk | FTP | other *** search
/ Aminet 40 / Aminet 40 (2000)(Schatztruhe)[!][Dec 2000].iso / Aminet / util / cdity / ModeProSrc.lha / Daemon / Unnamed1 / 4.1 / MPLocale.h < prev    next >
C/C++ Source or Header  |  1996-06-12  |  3KB  |  111 lines

  1. #ifndef MPDLOCALE_H
  2. #define MPDLOCALE_H
  3.  
  4.  
  5. /****************************************************************************/
  6.  
  7.  
  8. /* This file was created automatically by CatComp.
  9.  * Do NOT edit by hand!
  10.  */
  11.  
  12.  
  13. #ifndef EXEC_TYPES_H
  14. #include <exec/types.h>
  15. #endif
  16.  
  17. #ifdef CATCOMP_ARRAY
  18. #undef CATCOMP_NUMBERS
  19. #undef CATCOMP_STRINGS
  20. #define CATCOMP_NUMBERS
  21. #define CATCOMP_STRINGS
  22. #endif
  23.  
  24. #ifdef CATCOMP_BLOCK
  25. #undef CATCOMP_STRINGS
  26. #define CATCOMP_STRINGS
  27. #endif
  28.  
  29.  
  30. /****************************************************************************/
  31.  
  32.  
  33. #ifdef CATCOMP_NUMBERS
  34.  
  35. #define MSG_COMMODITY_TITLE 2
  36. #define MSG_ITEM_NEW_NAME 100
  37. #define MSG_ITEM_NO_NAME 101
  38. #define MSG_REQ_OK 200
  39. #define MSG_REQ_CANT_QUIT_SCREENS 201
  40. #define MSG_REQ_CANT_QUIT_PATCHED_OVER 202
  41. #define MSG_REQ_LOAD_ERROR 203
  42. #define MSG_REQ_USE_DEFAULT 204
  43. #define MSG_REQ_COULDNT_OPEN_LIBS 205
  44. #define MSG_REQ_NAME_VER_FMT 861
  45. #define MSG_ERR_COULDNT_FIND_PREFS 862
  46.  
  47. #endif /* CATCOMP_NUMBERS */
  48.  
  49.  
  50. /****************************************************************************/
  51.  
  52.  
  53. #ifdef CATCOMP_STRINGS
  54.  
  55. #define MSG_COMMODITY_TITLE_STR "Screen Mode Promoter."
  56. #define MSG_ITEM_NEW_NAME_STR "New"
  57. #define MSG_ITEM_NO_NAME_STR "<No Name>"
  58. #define MSG_REQ_OK_STR "Ok"
  59. #define MSG_REQ_CANT_QUIT_SCREENS_STR "ModePro cannot quit until the\nfollowing screens are closed:"
  60. #define MSG_REQ_CANT_QUIT_PATCHED_OVER_STR "ModePro cannot quit.\n\nAnother program has modified the\nsystem functions this ModePro has\npatched.  Remove other patches before\nquitting ModePro."
  61. #define MSG_REQ_LOAD_ERROR_STR "Load Error"
  62. #define MSG_REQ_USE_DEFAULT_STR "Don't Promote"
  63. #define MSG_REQ_COULDNT_OPEN_LIBS_STR "Couldn't open the following libraries:"
  64. #define MSG_REQ_NAME_VER_FMT_STR "\n  %s version %ld"
  65. #define MSG_ERR_COULDNT_FIND_PREFS_STR "Couldn't find ModePro Prefs.\n  Check path '%s'."
  66.  
  67. #endif /* CATCOMP_STRINGS */
  68.  
  69.  
  70. /****************************************************************************/
  71.  
  72.  
  73. #ifdef CATCOMP_ARRAY
  74.  
  75. struct CatCompArrayType
  76. {
  77.     LONG   cca_ID;
  78.     STRPTR cca_Str;
  79. };
  80.  
  81. static const struct CatCompArrayType CatCompArray[] =
  82. {
  83.     {MSG_COMMODITY_TITLE,(STRPTR)MSG_COMMODITY_TITLE_STR},
  84.     {MSG_ITEM_NEW_NAME,(STRPTR)MSG_ITEM_NEW_NAME_STR},
  85.     {MSG_ITEM_NO_NAME,(STRPTR)MSG_ITEM_NO_NAME_STR},
  86.     {MSG_REQ_OK,(STRPTR)MSG_REQ_OK_STR},
  87.     {MSG_REQ_CANT_QUIT_SCREENS,(STRPTR)MSG_REQ_CANT_QUIT_SCREENS_STR},
  88.     {MSG_REQ_CANT_QUIT_PATCHED_OVER,(STRPTR)MSG_REQ_CANT_QUIT_PATCHED_OVER_STR},
  89.     {MSG_REQ_LOAD_ERROR,(STRPTR)MSG_REQ_LOAD_ERROR_STR},
  90.     {MSG_REQ_USE_DEFAULT,(STRPTR)MSG_REQ_USE_DEFAULT_STR},
  91.     {MSG_REQ_COULDNT_OPEN_LIBS,(STRPTR)MSG_REQ_COULDNT_OPEN_LIBS_STR},
  92.     {MSG_REQ_NAME_VER_FMT,(STRPTR)MSG_REQ_NAME_VER_FMT_STR},
  93.     {MSG_ERR_COULDNT_FIND_PREFS,(STRPTR)MSG_ERR_COULDNT_FIND_PREFS_STR},
  94. };
  95.  
  96. #endif /* CATCOMP_ARRAY */
  97.  
  98.  
  99. /****************************************************************************/
  100.  
  101.  
  102. struct LocaleInfo
  103. {
  104.     APTR li_LocaleBase;
  105.     APTR li_Catalog;
  106. };
  107.  
  108.  
  109.  
  110. #endif /* MPDLOCALE_H */
  111.